1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
//! VBAN
use super::*;

/// Vban parameters
pub struct VoicemeeterVban<'a> {
    remote: &'a VoicemeeterRemote,
}

// vban.Enable 0 (off) or 1 (on) VBAN functions 1
// vban.instream[i].on 0 (off) or 1 (on) Stream On/Off 1
// vban.instream[i].name String Stream Name 1
// vban.instream[i].ip String IP Address from 1
// vban.instream[i].port 16 bit range PORT (Ethernet) 1
// vban.instream[i].sr 11025 to 96 kHz Read only 1
// vban.instream[i].channel 1 to 8 Read only 1
// vban.instream[i].bit VBAN data type Read only 1
// vban.instream[i].quality 0 to 4 0 = Optimal 1
// vban.instream[i].route 0 to 8 Strip Selector 1
// vban.outstream[i].on 0 (off) or 1 (on) Stream On/Off 1
// vban.outstream[i].name String Stream Name 1
// vban.outstream[i].ip String IP Address To 1
// vban.outstream[i].port 16 bit range PORT (Ethernet) 1
// vban.outstream[i].sr 11025 to 96 kHz 1
// vban.outstream[i].channel 1 to 8 1
// vban.outstream[i].bit VBAN data type 1 = 16 bits PCM 1
// vban.outstream[i].quality 0 to 4 0 = Optimal 1
// vban.outstream[i].route 0 to 8 BUS selector 1

impl<'a> VoicemeeterVban<'a> {
    #[doc(hidden)]
    pub fn new(remote: &'a VoicemeeterRemote) -> Self {
        Self { remote }
    }
    /// Get the identifier for an option: `Recorder.mode.{dot}`
    pub fn param(&self, dot: impl Display) -> Cow<'static, ParameterNameRef> {
        Cow::Owned(format!("{VBAN}.{}", dot).into())
    }

    /// Turn VBAN on or off
    pub fn enable(&self) -> BoolParameter {
        BoolParameter::new(self.param("Enable"), self.remote)
    }

    /// Incoming VBAN stream
    pub fn incoming_stream(
        &self,
        index: impl Into<ZIndex>,
    ) -> Result<VoicemeeterVbanStream<'a, true>, ParameterError> {
        let index = index.into();
        const VALID: &[(VoicemeeterApplication, std::ops::RangeInclusive<u8>)] = &[
            (VoicemeeterApplication::Voicemeeter, 0..=3),
            (VoicemeeterApplication::VoicemeeterBanana, 0..=7),
            (VoicemeeterApplication::VoicemeeterPotato, 0..=7),
            (VoicemeeterApplication::PotatoX64Bits, 0..=7),
        ];
        let param = format!("{VBAN}.instream");
        match VALID.iter().find(|(app, _)| self.remote.program == *app) {
            None => Err(ParameterError::Version(InvalidVoicemeeterVersion {
                expected: &[
                    VoicemeeterApplication::Voicemeeter,
                    VoicemeeterApplication::VoicemeeterBanana,
                    VoicemeeterApplication::VoicemeeterPotato,
                    VoicemeeterApplication::PotatoX64Bits,
                ],
                found: self.remote.program,
                parameter: param,
            })),
            Some((_, i)) if i.contains(&(index.0 as u8)) => {
                Ok(VoicemeeterVbanStream::<'a, true>::new(self.remote, index))
            }
            _ => Err(ParameterError::OutOfRange(OutOfRangeError {
                name: param.to_string(),
                index,
                program: self.remote.program,
            })),
        }
    }

    /// Outgoing VBAN stream
    pub fn outgoing_stream(
        &self,
        index: impl Into<ZIndex>,
    ) -> Result<VoicemeeterVbanStream<'a, false>, ParameterError> {
        let index = index.into();
        const VALID: &[(VoicemeeterApplication, std::ops::RangeInclusive<u8>)] = &[
            (VoicemeeterApplication::Voicemeeter, 0..=3),
            (VoicemeeterApplication::VoicemeeterBanana, 0..=7),
            (VoicemeeterApplication::VoicemeeterPotato, 0..=7),
            (VoicemeeterApplication::PotatoX64Bits, 0..=7),
        ];
        let param = format!("{VBAN}.outstream");
        match VALID.iter().find(|(app, _)| self.remote.program == *app) {
            None => Err(ParameterError::Version(InvalidVoicemeeterVersion {
                expected: &[
                    VoicemeeterApplication::Voicemeeter,
                    VoicemeeterApplication::VoicemeeterBanana,
                    VoicemeeterApplication::VoicemeeterPotato,
                    VoicemeeterApplication::PotatoX64Bits,
                ],
                found: self.remote.program,
                parameter: param,
            })),
            Some((_, i)) if i.contains(&(index.0 as u8)) => {
                Ok(VoicemeeterVbanStream::<'a, false>::new(self.remote, index))
            }
            _ => Err(ParameterError::OutOfRange(OutOfRangeError {
                name: param.to_string(),
                index,
                program: self.remote.program,
            })),
        }
    }
}

/// A VBAN stream, input or output
pub struct VoicemeeterVbanStream<'a, const INPUT: bool> {
    remote: &'a VoicemeeterRemote,
    index: ZIndex,
}

impl<'a, const INPUT: bool> VoicemeeterVbanStream<'a, INPUT> {
    #[doc(hidden)]
    pub fn new(remote: &'a VoicemeeterRemote, index: ZIndex) -> Self {
        Self { remote, index }
    }

    /// Get the identifier for an option: `Vban.{input}stream.{dot}`
    pub fn param(&self, dot: impl Display) -> Cow<'static, ParameterNameRef> {
        Cow::Owned(
            format!(
                "{VBAN}.{}stream[{}].{}",
                match INPUT {
                    true => "in",
                    false => "out",
                },
                self.index,
                dot
            )
            .into(),
        )
    }
    /// Stream On/Off
    pub fn on(&self) -> BoolParameter {
        BoolParameter::new(self.param("on"), self.remote)
    }
    /// Stream name
    pub fn name(&self) -> StringParameter {
        StringParameter::new(self.param("name"), self.remote)
    }
    /// IP Address
    pub fn ip(&self) -> StringParameter {
        StringParameter::new(self.param("ip"), self.remote)
    }

    /// Port
    pub fn port(&self) -> IntParameter {
        IntParameter::new(self.param("port"), self.remote, 0..=u16::MAX as i32)
    }

    /// Quality
    pub fn quality(&self) -> IntParameter {
        IntParameter::new(self.param("quality"), self.remote, 0..=4)
    }
    /// Strip Selector
    pub fn route(&self) -> IntParameter {
        IntParameter::new(self.param("route"), self.remote, 0..=8)
    }
}

impl<'a> VoicemeeterVbanStream<'a, true> {
    /// Sample rate
    pub fn sample_rate(&self) -> IntParameter<'a, false, true> {
        IntParameter::new(self.param("sr"), self.remote, 11025..=96000)
    }

    /// Channel
    ///
    /// 1 to 8
    pub fn channel(&self) -> IntParameter<'a, false, true> {
        IntParameter::new(self.param("channel"), self.remote, 1..=8)
    }
    /// VBAN data type
    ///
    /// |type|format|
    /// |----|------|
    /// |1|16 bits PCM|
    /// |2|24 bits PCM|
    pub fn bit(&self) -> IntParameter<'a, false, true> {
        IntParameter::new(self.param("bit"), self.remote, 1..=2)
    }
}

impl<'a> VoicemeeterVbanStream<'a, false> {
    /// Sample rate
    pub fn sample_rate(&self) -> IntParameter {
        IntParameter::new(self.param("sr"), self.remote, 11025..=96000)
    }
    /// Channel
    ///
    /// 1 to 8
    pub fn channel(&self) -> IntParameter {
        IntParameter::new(self.param("channel"), self.remote, 1..=8)
    }
    /// VBAN data type
    ///
    /// |type|format|
    /// |----|------|
    /// |1|16 bits PCM|
    /// |2|24 bits PCM|
    pub fn bit(&self) -> IntParameter {
        IntParameter::new(self.param("bit"), self.remote, 1..=2)
    }
}